home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 6 / The Arsenal Files 6 (Arsenal Computer).ISO / prg_casm / jlvesa11.zip / JLVESADS.ASM < prev    next >
Assembly Source File  |  1995-02-24  |  1KB  |  29 lines

  1. ; This file is part of the source code of VESA SVGA -library
  2. ;
  3. ; Copyright 1994 Johannes Lehtinen
  4. ; All rights reserved
  5.  
  6. ; Global data segment for library
  7.  
  8. segment JLVesa_Data common USE16 'DATA'
  9.  
  10.    Width             dw    ?  ; Width in pixels
  11.    Height            dw    ?  ; Height in pixels
  12.    LWidth            dw    ?  ; Logical width in pixels
  13.    Size              dd    ?  ; Size of the video memory
  14.    PSize             dd    ?  ; Size of video page
  15.    WSize             dd    ?  ; Window size
  16.    Granularity       dd    ?  ; Window granularity
  17.    WWSeg             dw    ?  ; Write window start segment
  18.    RWSeg             dw    ?  ; Read window start segment
  19.    RAStart           dd    ?  ; Current start address of active window (read)
  20.    WAStart           dd    ?  ; Current start address of active window (write)
  21.    AStart            dd    ?  ; Current start address of active page
  22.    VStart            dd    ?  ; Current start address of visual page
  23.    PosFunc           dd    ?  ; Window positioning function
  24.    Pages             db    ?  ; Number of video pages
  25.    RWin              db    ?  ; Number of read window
  26.    WWin              db    ?  ; Number of write window
  27.  
  28. ends
  29.